/*announcements*/
.announcement-wrapper {
  margin: 50px auto;
  width: 85%;
}
.announcement-wrapper .announcement {
  border: 1px solid #d4d4d4;
  padding: 0;
  width: 32%;
  margin: 15px 5px;
  background-color: #fff;
  box-shadow: 1px 1px 1px 0 #e4e4e4;
}
@media (max-width: 990px) {
  .announcement-wrapper .announcement {
    width: auto;
  }
}
.announcement-wrapper .announcement-header {
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  color: #fff;
  padding: 10px;
  border-bottom: 1px solid #d4d4d4;
  background-color:#5C7084;
  
}
.announcement-wrapper .announcement-header span {
  top: 3px;
  padding: 0 10px;
}
.announcement-wrapper .announcement-header h2 {
  font-size: 22px;
  font-weight: 300;
}
.announcement-wrapper .announcement-body {
  height: 400px;
  max-height: 400px;
  min-height: 400px;
}
.announcement-wrapper .announcement-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color:#f8f8f8;
  height: 100%;
  overflow-y: scroll;
  overflow-x:hidden;
}
.announcement-wrapper .announcement-body ul li {
  margin: 0 auto;
  padding: 10px;
  border-bottom: 1px solid #ccc;
  display: block;
  font-size:14px;
  cursor: pointer;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
}
.announcement-wrapper .announcement-body ul li:hover {
  background-color: #f4f4f4;
  color: #006699;
}
/*announcements ends*/

.marquee-wrapper {
  display: none;
}